home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Your Choice 3
/
Your Choice Software Collection 3.iso
/
doom
/
wad_200
/
wad_019
/
patch.bat
< prev
next >
Wrap
DOS Batch File
|
1994-04-09
|
565b
|
22 lines
@Echo Off
Echo Patching to run Doom Hockey!
Echo To switch back to normal Doom,
Echo run this AGAIN, and we swap it back
Echo by copying normal.exe back to doom.exe
if not exist doom.exe goto error
if exist normal.exe goto back
Echo Copying Doom.exe to normal.exe
copy doom.exe normal.exe
Echo Patching for Hockey Doom! Godmode ON!
hack.exe patch.hky doom.exe > nul
goto end
:back
echo Swapping back to Normal Doom
del doom.exe
copy normal.exe doom.exe
del normal.exe
goto end
:error
Echo Please apply this patch from your DOOM directory
:end